home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / haeberli / jpeg / jdmain.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  14KB  |  487 lines

  1. /*
  2.  * jdmain.c
  3.  *
  4.  * Copyright (C) 1991, 1992, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file contains a command-line user interface for the JPEG decompressor.
  9.  * It should work on any system with Unix- or MS-DOS-style command lines.
  10.  *
  11.  * Two different command line styles are permitted, depending on the
  12.  * compile-time switch TWO_FILE_COMMANDLINE:
  13.  *    djpeg [options]  inputfile outputfile
  14.  *    djpeg [options]  [inputfile]
  15.  * In the second style, output is always to standard output, which you'd
  16.  * normally redirect to a file or pipe to some other program.  Input is
  17.  * either from a named file or from standard input (typically redirected).
  18.  * The second style is convenient on Unix but is unhelpful on systems that
  19.  * don't support pipes.  Also, you MUST use the first style if your system
  20.  * doesn't do binary I/O to stdin/stdout.
  21.  */
  22.  
  23. #include "jinclude.h"
  24. #ifdef INCLUDES_ARE_ANSI
  25. #include <stdlib.h>        /* to declare exit() */
  26. #endif
  27. #include <ctype.h>        /* to declare isupper(), tolower() */
  28. #ifdef NEED_SIGNAL_CATCHER
  29. #include <signal.h>        /* to declare signal() */
  30. #endif
  31. #ifdef USE_SETMODE
  32. #include <fcntl.h>        /* to declare setmode() */
  33. #endif
  34.  
  35. #ifdef THINK_C
  36. #include <console.h>        /* command-line reader for Macintosh */
  37. #endif
  38.  
  39. #ifdef DONT_USE_B_MODE        /* define mode parameters for fopen() */
  40. #define READ_BINARY    "r"
  41. #define WRITE_BINARY    "w"
  42. #else
  43. #define READ_BINARY    "rb"
  44. #define WRITE_BINARY    "wb"
  45. #endif
  46.  
  47. #ifndef EXIT_FAILURE        /* define exit() codes if not provided */
  48. #define EXIT_FAILURE  1
  49. #endif
  50. #ifndef EXIT_SUCCESS
  51. #ifdef VMS
  52. #define EXIT_SUCCESS  1        /* VMS is very nonstandard */
  53. #else
  54. #define EXIT_SUCCESS  0
  55. #endif
  56. #endif
  57.  
  58.  
  59. #include "jversion.h"        /* for version message */
  60.  
  61.  
  62. /*
  63.  * This list defines the known output image formats
  64.  * (not all of which need be supported by a given version).
  65.  * You can change the default output format by defining DEFAULT_FMT;
  66.  * indeed, you had better do so if you undefine PPM_SUPPORTED.
  67.  */
  68.  
  69. typedef enum {
  70.     FMT_GIF,        /* GIF format */
  71.     FMT_PPM,        /* PPM/PGM (PBMPLUS formats) */
  72.     FMT_RLE,        /* RLE format */
  73.     FMT_SGI,        /* SGI format */
  74.     FMT_TARGA,        /* Targa format */
  75.     FMT_TIFF        /* TIFF format */
  76. } IMAGE_FORMATS;
  77.  
  78. #ifndef DEFAULT_FMT        /* so can override from CFLAGS in Makefile */
  79. #define DEFAULT_FMT    FMT_PPM
  80. #endif
  81.  
  82. static IMAGE_FORMATS requested_fmt;
  83.  
  84.  
  85. /*
  86.  * This routine gets control after the input file header has been read.
  87.  * It must determine what output file format is to be written,
  88.  * and make any other decompression parameter changes that are desirable.
  89.  */
  90.  
  91. METHODDEF void
  92. d_ui_method_selection (decompress_info_ptr cinfo)
  93. {
  94.   /* if grayscale or CMYK input, force similar output; */
  95.   /* else leave the output colorspace as set by options. */
  96.   if (cinfo->jpeg_color_space == CS_GRAYSCALE)
  97.     cinfo->out_color_space = CS_GRAYSCALE;
  98.   else if (cinfo->jpeg_color_space == CS_CMYK)
  99.     cinfo->out_color_space = CS_CMYK;
  100.  
  101.   /* select output file format */
  102.   /* Note: jselwxxx routine may make additional parameter changes,
  103.    * such as forcing color quantization if it's a colormapped format.
  104.    */
  105.   switch (requested_fmt) {
  106. #ifdef GIF_SUPPORTED
  107.   case FMT_GIF:
  108.     jselwgif(cinfo);
  109.     break;
  110. #endif
  111. #ifdef PPM_SUPPORTED
  112.   case FMT_PPM:
  113.     jselwppm(cinfo);
  114.     break;
  115. #endif
  116. #ifdef RLE_SUPPORTED
  117.   case FMT_RLE:
  118.     jselwrle(cinfo);
  119.     break;
  120. #endif
  121. #ifdef SGI_SUPPORTED
  122.   case FMT_SGI:
  123.     jselwsgi(cinfo);
  124.     break;
  125. #endif
  126. #ifdef TARGA_SUPPORTED
  127.   case FMT_TARGA:
  128.     jselwtarga(cinfo);
  129.     break;
  130. #endif
  131.   default:
  132.     ERREXIT(cinfo->emethods, "Unsupported output file format");
  133.     break;
  134.   }
  135. }
  136.  
  137.  
  138. /*
  139.  * Signal catcher to ensure that temporary files are removed before aborting.
  140.  * NB: for Amiga Manx C this is actually a global routine named _abort();
  141.  * see -Dsignal_catcher=_abort in CFLAGS.  Talk about bogus...
  142.  */
  143.  
  144. #ifdef NEED_SIGNAL_CATCHER
  145.  
  146. static external_methods_ptr emethods; /* for access to free_all */
  147.  
  148. GLOBAL void
  149. signal_catcher (int signum)
  150. {
  151.   if (emethods != NULL) {
  152.     emethods->trace_level = 0;    /* turn off trace output */
  153.     (*emethods->free_all) ();    /* clean up memory allocation & temp files */
  154.   }
  155.   exit(EXIT_FAILURE);
  156. }
  157.  
  158. #endif
  159.  
  160.  
  161. /*
  162.  * Optional routine to display a percent-done figure on stderr.
  163.  * See jddeflts.c for explanation of the information used.
  164.  */
  165.  
  166. #ifdef PROGRESS_REPORT
  167.  
  168. METHODDEF void
  169. progress_monitor (decompress_info_ptr cinfo, long loopcounter, long looplimit)
  170. {
  171.   if (cinfo->total_passes > 1) {
  172.     fprintf(stderr, "\rPass %d/%d: %3d%% ",
  173.         cinfo->completed_passes+1, cinfo->total_passes,
  174.         (int) (loopcounter*100L/looplimit));
  175.   } else {
  176.     fprintf(stderr, "\r %3d%% ",
  177.         (int) (loopcounter*100L/looplimit));
  178.   }
  179.   fflush(stderr);
  180. }
  181.  
  182. #endif
  183.  
  184.  
  185. /*
  186.  * Argument-parsing code.
  187.  * The switch parser is designed to be useful with DOS-style command line
  188.  * syntax, ie, intermixed switches and file names, where only the switches
  189.  * to the left of a given file name affect processing of that file.
  190.  * The main program in this file doesn't actually use this capability...
  191.  */
  192.  
  193.  
  194. static char * progname;        /* program name for error messages */
  195.  
  196.  
  197. LOCAL void
  198. usage (void)
  199. /* complain about bad command line */
  200. {
  201.   fprintf(stderr, "usage: %s [switches] ", progname);
  202. #ifdef TWO_FILE_COMMANDLINE
  203.   fprintf(stderr, "inputfile outputfile\n");
  204. #else
  205.   fprintf(stderr, "[inputfile]\n");
  206. #endif
  207.  
  208.   fprintf(stderr, "Switches (names may be abbreviated):\n");
  209.   fprintf(stderr, "  -colors N      Reduce image to no more than N colors\n");
  210. #ifdef GIF_SUPPORTED
  211.   fprintf(stderr, "  -gif           Select GIF output format\n");
  212. #endif
  213. #ifdef PPM_SUPPORTED
  214.   fprintf(stderr, "  -pnm           Select PBMPLUS (PPM/PGM) output format (default)\n");
  215. #endif
  216.   fprintf(stderr, "  -quantize N    Same as -colors N\n");
  217. #ifdef RLE_SUPPORTED
  218.   fprintf(stderr, "  -rle           Select Utah RLE output format\n");
  219. #endif
  220. #ifdef GIF_SUPPORTED
  221.   fprintf(stderr, "  -sgi           Select SGI output format\n");
  222. #endif
  223. #ifdef TARGA_SUPPORTED
  224.   fprintf(stderr, "  -targa         Select Targa output format\n");
  225. #endif
  226.   fprintf(stderr, "Switches for advanced users:\n");
  227. #ifdef BLOCK_SMOOTHING_SUPPORTED
  228.   fprintf(stderr, "  -blocksmooth   Apply cross-block smoothing\n");
  229. #endif
  230.   fprintf(stderr, "  -grayscale     Force grayscale output\n");
  231.   fprintf(stderr, "  -nodither      Don't use dithering in quantization\n");
  232. #ifdef QUANT_1PASS_SUPPORTED
  233.   fprintf(stderr, "  -onepass       Use 1-pass quantization (fast, low quality)\n");
  234. #endif
  235.   fprintf(stderr, "  -maxmemory N   Maximum memory to use (in kbytes)\n");
  236.   fprintf(stderr, "  -verbose  or  -debug   Emit debug output\n");
  237.   exit(EXIT_FAILURE);
  238. }
  239.  
  240.  
  241. LOCAL boolean
  242. keymatch (char * arg, const char * keyword, int minchars)
  243. /* Case-insensitive matching of (possibly abbreviated) keyword switches. */
  244. /* keyword is the constant keyword (must be lower case already), */
  245. /* minchars is length of minimum legal abbreviation. */
  246. {
  247.   register int ca, ck;
  248.   register int nmatched = 0;
  249.  
  250.   while ((ca = *arg++) != '\0') {
  251.     if ((ck = *keyword++) == '\0')
  252.       return FALSE;        /* arg longer than keyword, no good */
  253.     if (isupper(ca))        /* force arg to lcase (assume ck is already) */
  254.       ca = tolower(ca);
  255.     if (ca != ck)
  256.       return FALSE;        /* no good */
  257.     nmatched++;            /* count matched characters */
  258.   }
  259.   /* reached end of argument; fail if it's too short for unique abbrev */
  260.   if (nmatched < minchars)
  261.     return FALSE;
  262.   return TRUE;            /* A-OK */
  263. }
  264.  
  265.  
  266. LOCAL int
  267. parse_switches (decompress_info_ptr cinfo, int last_file_arg_seen,
  268.         int argc, char **argv)
  269. /* Initialize cinfo with default switch settings, then parse option switches.
  270.  * Returns argv[] index of first file-name argument (== argc if none).
  271.  * Any file names with indexes <= last_file_arg_seen are ignored;
  272.  * they have presumably been processed in a previous iteration.
  273.  * (Pass 0 for last_file_arg_seen on the first or only iteration.)
  274.  */
  275. {
  276.   int argn;
  277.   char * arg;
  278.  
  279.   /* (Re-)initialize the system-dependent error and memory managers. */
  280.   jselerror(cinfo->emethods);    /* error/trace message routines */
  281.   jselmemmgr(cinfo->emethods);    /* memory allocation routines */
  282.   cinfo->methods->d_ui_method_selection = d_ui_method_selection;
  283.  
  284.   /* Now OK to enable signal catcher. */
  285. #ifdef NEED_SIGNAL_CATCHER
  286.   emethods = cinfo->emethods;
  287. #endif
  288.  
  289.   /* Set up default JPEG parameters. */
  290.   j_d_defaults(cinfo, TRUE);
  291.   requested_fmt = DEFAULT_FMT;    /* set default output file format */
  292.  
  293.   /* Scan command line options, adjust parameters */
  294.  
  295.   for (argn = 1; argn < argc; argn++) {
  296.     arg = argv[argn];
  297.     if (*arg != '-') {
  298.       /* Not a switch, must be a file name argument */
  299.       if (argn <= last_file_arg_seen)
  300.     continue;        /* ignore it if previously processed */
  301.       break;            /* else done parsing switches */
  302.     }
  303.     arg++;            /* advance past switch marker character */
  304.  
  305.     if (keymatch(arg, "blocksmooth", 1)) {
  306.       /* Enable cross-block smoothing. */
  307.       cinfo->do_block_smoothing = TRUE;
  308.  
  309.     } else if (keymatch(arg, "colors", 1) || keymatch(arg, "colours", 1) ||
  310.            keymatch(arg, "quantize", 1) || keymatch(arg, "quantise", 1)) {
  311.       /* Do color quantization. */
  312.       int val;
  313.  
  314.       if (++argn >= argc)    /* advance to next argument */
  315.     usage();
  316.       if (sscanf(argv[argn], "%d", &val) != 1)
  317.     usage();
  318.       cinfo->desired_number_of_colors = val;
  319.       cinfo->quantize_colors = TRUE;
  320.  
  321.     } else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
  322.       /* Enable debug printouts. */
  323.       /* On first -d, print version identification */
  324.       if (last_file_arg_seen == 0 && cinfo->emethods->trace_level == 0)
  325.     fprintf(stderr, "Independent JPEG Group's DJPEG, version %s\n%s\n",
  326.         JVERSION, JCOPYRIGHT);
  327.       cinfo->emethods->trace_level++;
  328.  
  329.     } else if (keymatch(arg, "gif", 1)) {
  330.       /* GIF output format. */
  331.       requested_fmt = FMT_GIF;
  332.  
  333.     } else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
  334.       /* Force monochrome output. */
  335.       cinfo->out_color_space = CS_GRAYSCALE;
  336.  
  337.     } else if (keymatch(arg, "maxmemory", 1)) {
  338.       /* Maximum memory in Kb (or Mb with 'm'). */
  339.       long lval;
  340.       char ch = 'x';
  341.  
  342.       if (++argn >= argc)    /* advance to next argument */
  343.     usage();
  344.       if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
  345.     usage();
  346.       if (ch == 'm' || ch == 'M')
  347.     lval *= 1000L;
  348.       cinfo->emethods->max_memory_to_use = lval * 1000L;
  349.  
  350.     } else if (keymatch(arg, "nodither", 3)) {
  351.       /* Suppress dithering in color quantization. */
  352.       cinfo->use_dithering = FALSE;
  353.  
  354.     } else if (keymatch(arg, "onepass", 1)) {
  355.       /* Use fast one-pass quantization. */
  356.       cinfo->two_pass_quantize = FALSE;
  357.  
  358.     } else if (keymatch(arg, "pnm", 1)) {
  359.       /* PPM/PGM output format. */
  360.       requested_fmt = FMT_PPM;
  361.  
  362.     } else if (keymatch(arg, "rle", 1)) {
  363.       /* RLE output format. */
  364.       requested_fmt = FMT_RLE;
  365.  
  366.     } else if (keymatch(arg, "sgi", 1)) {
  367.       /* SGI output format. */
  368.       requested_fmt = FMT_SGI;
  369.  
  370.     } else if (keymatch(arg, "targa", 1)) {
  371.       /* Targa output format. */
  372.       requested_fmt = FMT_TARGA;
  373.  
  374.     } else {
  375.       usage();            /* bogus switch */
  376.     }
  377.   }
  378.  
  379.   return argn;            /* return index of next arg (file name) */
  380. }
  381.  
  382.  
  383. /*
  384.  * The main program.
  385.  */
  386.  
  387. GLOBAL int
  388. main (int argc, char **argv)
  389. {
  390.   struct Decompress_info_struct cinfo;
  391.   struct Decompress_methods_struct dc_methods;
  392.   struct External_methods_struct e_methods;
  393.   int file_index;
  394.  
  395.   /* On Mac, fetch a command line. */
  396. #ifdef THINK_C
  397.   argc = ccommand(&argv);
  398. #endif
  399.  
  400.   progname = argv[0];
  401.  
  402.   /* Set up links to method structures. */
  403.   cinfo.methods = &dc_methods;
  404.   cinfo.emethods = &e_methods;
  405.  
  406.   /* Install, but don't yet enable signal catcher. */
  407. #ifdef NEED_SIGNAL_CATCHER
  408.   emethods = NULL;
  409.   signal(SIGINT, signal_catcher);
  410. #ifdef SIGTERM            /* not all systems have SIGTERM */
  411.   signal(SIGTERM, signal_catcher);
  412. #endif
  413. #endif
  414.  
  415.   /* Scan command line: set up compression parameters, input & output files. */
  416.  
  417.   file_index = parse_switches(&cinfo, 0, argc, argv);
  418.  
  419. #ifdef TWO_FILE_COMMANDLINE
  420.  
  421.   if (file_index != argc-2) {
  422.     fprintf(stderr, "%s: must name one input and one output file\n", progname);
  423.     usage();
  424.   }
  425.   if ((cinfo.input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
  426.     fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
  427.     exit(EXIT_FAILURE);
  428.   }
  429.   if ((cinfo.output_file = fopen(argv[file_index+1], WRITE_BINARY)) == NULL) {
  430.     fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index+1]);
  431.     exit(EXIT_FAILURE);
  432.   }
  433.  
  434. #else /* not TWO_FILE_COMMANDLINE -- use Unix style */
  435.  
  436.   cinfo.input_file = stdin;    /* default input file */
  437.   cinfo.output_file = stdout;    /* always the output file */
  438.  
  439. #ifdef USE_SETMODE        /* need to hack file mode? */
  440.   setmode(fileno(stdin), O_BINARY);
  441.   setmode(fileno(stdout), O_BINARY);
  442. #endif
  443.  
  444.   if (file_index < argc-1) {
  445.     fprintf(stderr, "%s: only one input file\n", progname);
  446.     usage();
  447.   }
  448.   if (file_index < argc) {
  449.     if ((cinfo.input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
  450.       fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
  451.       exit(EXIT_FAILURE);
  452.     }
  453.   }
  454.  
  455. #endif /* TWO_FILE_COMMANDLINE */
  456.   
  457.   /* Set up to read a JFIF or baseline-JPEG file. */
  458.   /* A smarter UI would inspect the first few bytes of the input file */
  459.   /* to determine its type. */
  460. #ifdef JFIF_SUPPORTED
  461.   jselrjfif(&cinfo);
  462. #else
  463.   You shoulda defined JFIF_SUPPORTED.   /* deliberate syntax error */
  464. #endif
  465.  
  466. #ifdef PROGRESS_REPORT
  467.   /* Start up progress display, unless trace output is on */
  468.   if (e_methods.trace_level == 0)
  469.     dc_methods.progress_monitor = progress_monitor;
  470. #endif
  471.  
  472.   /* Do it to it! */
  473.   jpeg_decompress(&cinfo);
  474.  
  475. #ifdef PROGRESS_REPORT
  476.   /* Clear away progress display */
  477.   if (e_methods.trace_level == 0) {
  478.     fprintf(stderr, "\r                \r");
  479.     fflush(stderr);
  480.   }
  481. #endif
  482.  
  483.   /* All done. */
  484.   exit(EXIT_SUCCESS);
  485.   return 0;            /* suppress no-return-value warnings */
  486. }
  487.